/* -------- Whisper Theme Colors (from your palette) -------- */
:root{
    --c-ink: #3f3f3f;      /* dark gray */
    --c-brown: #76572f;    /* brown */
    --c-amber: #bf7f00;    /* amber */
    --c-gold: #d6a437;     /* golden */
    --c-yellow: #ffdd66;   /* light yellow */
    --c-cream: #fff8dc;    /* very light */
    --c-border: #e9e2c9;
    --radius: 16px;
    --shadow: 0 10px 28px rgba(63,63,63,.08);
}

/* Section 1: Theme */
.theme {
    padding-top: 170px;
    padding-bottom: 50px;
    background: radial-gradient(1200px 520px at 12% -10%, var(--c-cream) 0%, #fff 55%);
    position: relative;
    overflow: clip;
}

.theme .row {
    gap: 2%;
}

.whisper-badge {
    display:inline-flex; align-items:center; gap:.5rem;
    padding:.42rem .75rem; border-radius:999px;
    font-size:.85rem; font-weight:700;
    color: var(--c-amber);
    background:#fff;
    border:1px solid var(--c-border);
    box-shadow: var(--shadow);
}
.whisper-badge svg{ color: var(--c-amber) }

.theme-title {
    width: 100%;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 42px;
    background: linear-gradient(90deg, #775628 0%, #c07f00 35%, #ffd95a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-title-1 {
    width: 100%;
    color: #775628;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: calc(100% + 4px);
}

.theme-title-1 span {
    font-family: "Inter";
}

.theme-sub-title {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.whisper-points{
    list-style: none;
    padding: 0; margin: 10px 0 20px;
    display: grid; gap: 10px;
}
.whisper-points li {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 10px 12px 10px 36px;
    box-shadow: var(--shadow);
    position: relative;
}

.whisper-points li::before {
    content: "";
    width: 16px; height: 16px;
    border-radius: 50%;
    position: absolute; 
    left: 12px;
    top: 50%;                       
    transform: translateY(-50%);
    background: radial-gradient(circle at 35% 35%, var(--c-yellow), var(--c-gold));
    box-shadow: 0 0 0 2px rgba(255,221,102,.35);
}

.theme-2 {
    border: none;
    margin-right: 0px;
    background: var(--gra2);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-2:hover,
.theme-2:focus,
.theme-2:active {
    outline: none;
}

.whisper-col--art{
    display: flex;
    align-items: center;
}

.whisper-card{
    position: relative;
    width: 100%;
    height: 90%;
    aspect-ratio: 16/11;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.whisper-wave{
    position:absolute; inset:auto 0 0 0; height:40%;
    background: linear-gradient(180deg, #fff3c4 0%, var(--c-cream) 100%);
    border-top-left-radius: 40% 60%;
    border-top-right-radius: 60% 60%;
    animation: waveFloat 5s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-6px) scaleY(1.05); }
}

/* Cột “equalizer” (amber → gold) */
.whisper-bars{
    position:absolute; top:18%; left:10%;
    display:flex; gap:8px;
}
.whisper-bars span{
    width: 9px; 
    height: 50px; 
    border-radius:8px;
    background: linear-gradient(180deg, var(--c-amber), var(--c-gold));
    box-shadow: 0 4px 10px rgba(191,127,0,.18);
    animation: whisper-bar 1.1s ease-in-out infinite;
}
.whisper-bars span:nth-child(2){animation-delay:.1s}
.whisper-bars span:nth-child(3){animation-delay:.2s}
.whisper-bars span:nth-child(4){animation-delay:.3s}
.whisper-bars span:nth-child(5){animation-delay:.4s}

@keyframes whisper-bar{
    0%,100%{ transform: scaleY(.55) }
    50%{ transform: scaleY(1) }
}

.whisper-file{
    position:absolute; right:18px; top:18px;
    display:flex; align-items:center; gap:12px;
    padding:10px 12px;
    background:#ffffff;
    border:1px solid var(--c-border);
    border-radius:12px;
    box-shadow: var(--shadow);
}
.whisper-file__icon{ font-size:20px }
.whisper-file__text small{ color:#7a7a7a }

.theme .data-svg{
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translateX(-50%);
    width: 75%;             
    height: auto;
    z-index: 2;             
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {
    0%,100% { transform: translate(-50%,0); }
    50%     { transform: translate(-50%,-12px); }
}

@media (max-width: 1400px) {
    .theme-title {
        font-size: 38px;
        margin-top: 15px;
        margin-bottom: 15px;
        line-height: 45px;
    }

    .theme-title-1 {
        margin-bottom: 15px;
    }

    .whisper-points {
        margin: 10px 0 15px;
        gap: 10px;  
    }

    .whisper-points li {
        padding: 8px 12px 8px 36px;
    }

    .whisper-bars span {
        width: 7px;
        height: 48px;
    }
}

@media (max-width: 1200px) {
    .theme-title {
        font-size: 34px;
    }

    .theme .row {
        gap: 1%;
    }

    .whisper-card {
        height: 85%;
    }

    .theme .data-svg {
        top: 38%;
        width: 78%;
    }

    .whisper-file {
        padding: 8px 12px;
    }

    .whisper-points li::before {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 991px) {
    .theme {
        padding-top: 100px;
    }

    .whisper-card {
        height: 90%;
    }

    .theme-title-1 {
        margin-top: 10px;
    }

    .theme-sub-title {
        margin-top: 15px;
    }

    .theme-title {
        padding-top: 0px;
    }

    .whisper-col--art{ order:-1 }

    .theme .data-svg {
        top: 32%;
        width: 65%;
    }
}

@media (max-width: 768px) {
    .theme-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .whisper-points li::before {
        width: 12px;
        height: 12px;
    }
}

/* Section 1: upload */
.upload {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.upload .box {
    position: relative;
    z-index: 1;
    padding-top: 30px;
    padding-bottom: 10px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0px 4px 15px  rgb(0, 0, 0, 0.25);
}

.upload .box-title {
    text-align: center;
}

.upload .box-title h2 {
    margin-bottom: 0px;
    background: var(--gra2);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    display: block;
    margin: 0 auto;
    font-weight: 500;
}

/* upload frame start*/
.upload .up-frame {
    height: 430px;
}

.upload-wrapper{ 
    width: 100%;
    display: grid; 
    grid-template-columns: .9fr 1.1fr; 
    padding: 20px 40px 0px 40px;
}

/* LEFT: Dropzone */
.dropzone-card{
    background: rgb(119, 86, 40, 0.05);
    border-radius: 40px;
    position: relative; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    height: 400px;
}

.border-svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none; 
}

.dropzone{
    width:100%; 
    height:100%; 
    display:grid; 
    place-items:center; 
    text-align:center; 
    gap:14px; 
    padding: 28px 12px;
    position: relative;
}

.upload-icon{ 
    font-size: 65px;
    color: #7b542e;
    margin-bottom:6px; 
}

.drop-title{ 
    font-weight:600; 
    font-size: 20px;
}

.line-or {
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload .line {
    width: 70px;
    height: 1px;
    background: #505050;
}

.or{ 
    color:#505050; 
    font-size: 18px; 
}

.upload .browseBtn{ 
    cursor: pointer; 
    border: 2.5px solid #775628; 
    color:#775628; 
    background: transparent; 
    border-radius: 46px; 
    transition:.2s ease; 
    font-size: 20px;
    height: 44px;
    width: 180px;
    background: #f8f6f4;
}

.upload .browseBtn:hover{
    background: #775628; 
    color:#f8f6f4; 
}

.upload .browseBtn:focus,
.upload .browseBtn:active {
    outline: none;
}

.help{ 
    font-size: 18px; 
    color: #505050; 
    margin-top:8px; 
}
.help b{ 
    font-family: 'Inter';
    color:#000; 
    font-weight:700; 
}

/* RIGHT: File list */
.panel{ 
    padding: 10px 0px 10px 35px; 
    height: 400px;
    display: flex;             
    flex-direction: column;     
    min-height: 0;              
    overflow: hidden;    
}

.panel h3{ 
    margin-bottom: 20px; 
    background: var(--gra2);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.file-scroll{
    flex:1; 
    min-height:0;   
    overflow-y:auto; 
    overflow-x:hidden;
    padding-right:8px;  
    scrollbar-width: thin;
}

.file-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }

.file-item{ 
    display:grid; 
    grid-template-columns: 50px minmax(0, 1fr) 50px; 
    gap:10px; 
    align-items:center; 
}

.file-meta{ display:flex; flex-direction:column; min-width: 0;}

.file-name{ 
    font-family: 'Inter'; 
    max-width: 100%; 
    font-size:14px; 
    font-weight:500; 
    white-space:nowrap; 
    overflow:hidden; 
    text-overflow:ellipsis; 
    line-height: 24px;
}

.size-per {
    display: flex;
    font-family: 'Inter'; 
    font-size: 12px;
    color: #505050; 
    justify-content: space-between;
    height: 22px;
    line-height: 22px;
}

.file-progress{ align-self:center; height:2px; width:100%;  background:#f1e8dc; border-radius:999px; overflow:hidden; position:relative; }
.file-progress > .bar{ height:100%; min-width: 2px; background: linear-gradient(90deg, #775628, #C07F00); transition: width .2s linear; }

.contain-pro {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.contain-pro > div {
    width: 100%;
}

.btn-x{ 
    color: #775628;
    font-size: 24px; 
    font-weight: 500; 
    cursor:pointer; 
    display: block;
    margin-left: auto;
}

.btn-x:hover{         
    color: rgb(119, 86, 40, 0.8);
}

.badge-error{ font-size:12px; color:#b42318; }

.contain-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #775628;
    background: #F5F2EE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.file-icon{ 
    font-size: 35px;
    color: #775628; 
}

.hidden{ display:none; }

/* upload frame end */

.upload .box-end div {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.upload .box-end p {
    margin-bottom: 0px;
    text-align: center;
    color: #505050;
    font-family: 'Inter';
    font-weight: 300;
}

.upload .box-end p.text-alert {
    font-family: 'Inter';
    color: #775628;
    font-weight: 600;
    height: 30px;
}

.upload .box-end #update-request {
    height: 30px;
}

.upload .box-end p span {
    font-family: 'Montserrat';
    font-weight: 400;
}

.box-end .material-symbols-rounded {
    color: #505050;
    font-weight: 300;
}

.upload .box-end button {
    display: block;
    margin: 20px auto;
    border: none;
    background: #775628;
    color: #F5F2EE;
    height: 40px;
    width: 160px;
    border-radius: 40px;
}

.upload .box-end button:hover,
.upload .box-end button:focus {
  outline: none;
  border: solid 3px #775628;
  background: #F5F2EE; 
  color: #775628;
  outline: none;
}

.upload .box-end button:active {
  outline: none;
}

#transcribe:disabled {
    background-color: #ccc;       
    color: #777;                  
    border: 3px solid #aaa;      
    cursor: not-allowed;          
    opacity: 0.7;                
    box-shadow: none;             
}

#transcribe:disabled:hover {
    background-color: #ccc;
    color: #777;
}

.upload .bgr {
    background: var(--gra7);
    height: 500px;
    width: 100%;
    position: absolute;
    z-index: 0;
    top: calc(50% - 270px);
}

@media (max-width: 1400px) {
    .upload .browseBtn {
        border: 2px solid #775628;
        font-size: 18px;
        width: 170px;
    }

    .drop-title {
        font-size: 19px;
    }

    .help {
        font-size: 17px;
    }

    .panel {
        padding: 10px 0px 10px 30px;
    }

    .panel h3 {
        margin-bottom: 15px;
    }

    .file-item {
        grid-template-columns: 48px minmax(0, 1fr) 40px;
    }

    .contain-icon {
        width: 48px;
        height: 48px;
    }

    .file-icon {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .upload-wrapper {
        padding: 20px 30px 0px 30px;
    }

    .upload .box-title p span {
        display: block; 
    }

    .upload .browseBtn {
        font-size: 17px;
        width: 160px;
        height: 36px;
    }

    .drop-title {
        font-size: 18px;
    }

    .panel {
        padding: 10px 0px 10px 20px;
    }

    .file-item {
        grid-template-columns: 45px minmax(0, 1fr) 30px;
    }

    .contain-icon {
        width: 45px;
        height: 45px;
    }

    .file-icon {
        font-size: 28px;
    }

    .btn-x {
        font-size: 20px;
    }

    .or {
        font-size: 17px;
    }

    .upload .box-end button {
        height: 36px;
        width: 150px;
    }
}

@media (max-width: 991px){
    .upload .box-title {
        padding: 0px 30px;
    }

    .upload-wrapper { 
        grid-template-columns: 1fr; 
    }

    .upload .up-frame {
        height: 430px;
    }

    .dropzone-card {
        height: 240px;
    }

    .dropzone {
        gap: 10px;
        padding: 20px 12px 20px 12px;
    }

    .upload-icon {
        font-size: 160px;
        color: rgb(119, 86, 40, 0.09);
        margin-bottom: 0px;
        position: absolute;
        z-index: -1;
    }

    .upload .browseBtn {
        position: relative;
        z-index: 0;
        font-size: 16px;
        width: 150px;
        height: 34px;
    }

    .help {
        font-size: 16px;
        margin-top: 4px;
    }

    .panel {
        padding: 10px 0px 0px 10px;
        height: 160px;
    }

    .panel h3 {
        margin-bottom: 10px;
    }

    .file-list {
        gap: 10px;
    }

    .file-item {
        grid-template-columns: 45px minmax(0, 1fr) 30px;
    }

    .contain-icon {
        width: 45px;
        height: 45px;
    }

    .file-icon {
        font-size: 28px;
    }

    .upload .bgr {
        height: 500px;
        top: calc(50% - 280px);
    }

    .upload .box-end button {
        margin: 20px auto;
        height: 34px;
        width: 140px;
    }
}

@media (max-width: 768px){
    .upload .box-title {
        padding: 0px 20px;
    }

    .upload .box-title h2 {
        font-size: 22px;
    }

    .upload-wrapper {
        padding: 20px 20px 0px 20px;
    }

    .upload-icon {
        font-size: 130px;
    }

    .drop-title {
        font-size: 17px;
    }

    .help {
        font-size: 15px;
    }

    .file-name {
        font-size: 13px;
        line-height: 23px;
    }

    .file-item {
        grid-template-columns: 43px minmax(0, 1fr) 30px;
    }

    .contain-icon {
        width: 43px;
        height: 43px;
    }

    .file-icon {
        font-size: 26px;
    }

    .size-per {
        font-size: 11.5px;
    }

    .upload .box-end button {
        margin: 16px auto;
    }
}

@media (max-width: 576px){
    .upload .box-end button {
        margin: 12px auto;
        height: 32px;
        width: 130px;
    }
}

/* section conversion */
.conversion {
    padding-bottom: 50px;
    display: none;
}

.conversion .frame {
    border-radius: 20px;
    border: 2px solid rgb(119, 86, 40, 0.6);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.conversion h5 {
    color: #775628;
    font-weight: 600;
}

.conversion .w-output {
    width: 100%;
    background: #f4f1ee;
    border-radius: 20px;
    padding: 20px 30px 30px 30px;
}

.ws-head {
    display:flex; align-items:center; 
    justify-content:space-between;
    margin-bottom: 15px;
}

.ws-head__label { 
    font-size: 14px; 
    color: #505050;
}

.ws-copy {
    font-size: 13px; 
    cursor:pointer;
    outline: none;
    border: none;
    background: none;
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #505050;
    padding-right: 0px;
}

.ws-copy span {
    font-size: 20px;
}

.ws-copy:hover,
.ws-copy:focus { 
    outline: none;
}

.ws-box {
    padding: 10px 0px 10px 25px;
    position: relative;
    line-height: 30px;
    font-family: "Inter";
    font-weight: 300;
    text-align: justify;
}

.ws-box::before{
    content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
    background: rgb(119, 86, 40, 0.5);
    border-radius:10px; 
}

.ws-hint{ margin:10px 0 0; font-size:13px; }

.loader {
    width: 160px;
    height: 185px;
    position: relative;
    background: #826339;
    border-radius: 100px 100px 0 0;
    display: none;
}

.loader:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 125px;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #000 48%, transparent 55%),
        radial-gradient(circle, #000 48%, transparent 55%),
        radial-gradient(circle, #FFF7D4 30%, transparent 45%),
        radial-gradient(circle, #000 48%, transparent 51%),
        linear-gradient(#000 20px, transparent 0),
        linear-gradient(#FFF7D4 60px, transparent 0),
        radial-gradient(circle, #FFF7D4 50%, transparent 51%),
        radial-gradient(circle, #FFF7D4 50%, transparent 51%);
    background-repeat: no-repeat;
    background-size: 16px 16px, 16px 16px, 10px 10px, 42px 42px, 12px 3px,
        50px 25px, 70px 70px, 70px 70px;
    background-position: 25px 10px, 55px 10px, 36px 44px, 50% 30px, 50% 85px,
        50% 50px, 50% 22px, 50% 45px;
    animation: faceLift 3s linear infinite alternate;
}

.loader:before {
    content: "";
    position: absolute;
    width: 140%;
    height: 125px;
    left: -20%;
    top: 0;
    background-image: radial-gradient(circle, #826339 48%, transparent 50%),
        radial-gradient(circle, #826339 48%, transparent 50%);
    background-repeat: no-repeat;
    background-size: 65px 65px;
    background-position: 0px 12px, 145px 12px;
    animation: earLift 3s linear infinite alternate;
}

@keyframes faceLift {
    0% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-30%);
    }
}
@keyframes earLift {
    0% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0px);
    }
}

@media (max-width: 1400px) {
    .conversion .w-output {
        padding: 20px 25px 25px 30px;
    }

    .ws-box {
        padding: 8px 0px 8px 20px;
        line-height: 26px;
    }
}

@media (max-width: 1200px) {
    .conversion h5 {
        font-size: 20px;
    }

    .conversion .frame {
        padding: 40px 30px 30px 30px;
        gap: 20px;
    }

    .ws-head__label {
        font-size: 13px;
    }

    .ws-copy {
        font-size: 12px;
    }

    .ws-copy span {
        font-size: 18px;
    }

    .ws-head {
        margin-bottom: 10px;
    }

    .ws-box {
        padding: 4px 0px 4px 18px;
        line-height: 24px;
    }

    .ws-box::before {
        width: 4px;
    }
}

@media (max-width: 991px) {
    .conversion h5 {
        font-size: 19px;
    }

    .conversion .frame {
        padding: 30px 25px 25px 25px;
        gap: 20px;
        border-radius: 16px;
    }

    .conversion .w-output {
        padding: 15px 25px 20px 25px;
        border-radius: 14px;
    }

    .ws-box {
        padding: 0px 0px 0px 18px;
        line-height: 22px;
        font-size: 13px;
    }

    .ws-box::before {
        width: 4px;
    }
}

@media (max-width: 768px) {
    .conversion h5 {
        font-size: 17px;
    }

    .conversion .frame {
        padding: 30px 20px 20px 20px;
        gap: 10px;
    }

    .conversion .w-output {
        padding: 10px 20px 20px 20px;
        border-radius: 14px;
    }

    .ws-box {
        padding: 0px 0px 0px 14px;
        line-height: 20px;
        font-size: 13px;
    }

    .ws-box::before {
        width: 2px;
    }
}

/* bgr */
.whisper-bgr {
    position: relative;
    height: 700px;
}

.whisper-bgr img {
    display: block;
    max-height: none !important;
    height: auto !important;
    object-fit: contain;
    max-width: 1330px;
    position: absolute;
    z-index: 1; 
    bottom: -100px;
    left: 50%;                 
    transform: translateX(-50%)
}

@media (max-width: 1700px) {
    .whisper-bgr {
        height: 560px;
    }

    .whisper-bgr img {
        max-width: 1100px;
    }
}

@media (max-width: 1400px) {
    .whisper-bgr {
        height: 500px;
    }

    .whisper-bgr img {
        max-width: 1000px;
    }
}

@media (max-width: 1200px) {
    .whisper-bgr {
        height: 430px;
    }

    .whisper-bgr img {
        max-width: 900px;
    }
}

@media (max-width: 991px) {
    .whisper-bgr {
        height: 340px;
    }

    .whisper-bgr img {
        max-width: 700px;
        bottom: -75px;
    }
}

@media (max-width: 768px) {
    .whisper-bgr {
        height: 260px;
    }

    .whisper-bgr img {
        max-width: 550px;
        bottom: -60px;
    }
}

@media (max-width: 560px) {
    .whisper-bgr {
        height: 230px;
    }

    .whisper-bgr img {
        max-width: 500px;
        bottom: -50px;
    }
}

/* section instruct */
.instruct {
    position: relative;
    z-index: 0; 
    padding-top: 100px;
    padding-bottom: 80px;
    background: var(--gra7);
    color: #fff;
}

.instruct .title h2 {
    background: var(--GRA5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    font-weight: 500;
    margin-bottom: 20px;
}

.instruct .title h5 {
    font-size: 22px;
}

.instruct .content {
    margin-top: 40px;
}

.instruct .content div div {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px 10px;
    border-bottom: 1px solid #D4D4D4;
    height: 100px;
}

.instruct .content .left-part div:first-child {
    border-top: 1px solid #D4D4D4;
}

.instruct .content .left-part,
.instruct .content .right-part {
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.instruct .content h4 {
    margin: 0px;
    font-size: 30px;
    line-height: 30px;
}

.instruct .content p {
    margin: 0px;
    font-size: 20px;
    line-height: 32px;
    color: #fff;
}

.instruct .contain-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.instruct .contain-img img {
    width: 80%;
}

@media (max-width: 1200px) {
    .instruct .content p {
        margin: 0px;
        font-size: 18px;
        line-height: 30px;
    }
}

@media (max-width: 991px) {
    .instruct .title h5 {
        font-size: 20px;
    }

    .instruct .content .left-part {
        width: 60%;
    }

    .instruct .content .right-part {
        width: 40%;
    }

    .instruct .contain-img img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .instruct {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .instruct .title h5 {
        font-size: 18px;
    }

    .instruct .content div div {
        padding: 18px 10px;
        height: 90px;
    }

    .instruct .content .left-part {
        width: 100%;
    }

    .instruct .content .right-part {
        width: 100%;
    }

    .instruct .contain-img img {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .instruct .title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .instruct .content {
        margin-top: 25px;
    }
}


/* section xml-faq */
.xml-faq {
    padding-top: 50px;
    padding-bottom: 70px;
}

.xml-faq h2 {
    background: var(--gra2);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    font-weight: 500;
    display: block;
    margin: auto;
    margin-bottom: 40px;
}

.xml-faq .faq {
    transition: all 5s;
}

.xml-faq .faq .question {
    background: rgb(119, 86, 40, 0.1);
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    border-top: 1px solid rgb(119, 86, 40, 0.6);
}

.xml-faq .faq .question *{
    margin: 0;
    color: #775628;
}

.xml-faq .faq .question h4 {
    font-weight: 600;
}

.xml-faq .faq .question p {
    font-size: 52px;
    font-weight: 100;
    cursor: pointer;
}

.xml-faq .faq .answer {
    display: none;
    padding: 18px 25px;
}

.xml-faq .faq .answer p {
    font-size: 20px;
    margin: 0;
    font-family: 'Inter';
    font-weight: 300;
}

.xml-faq .faq .answer span {
    color: #775628;
    font-weight: 700;
}

.xml-faq .faq.open .answer {
    display: block;
}

.xml-faq .faq.open .question p {
    font-size: 42px;
    font-weight: 200;
}

.xml-faq .faq:last-child {
    height: 141px;
}

@media (max-width: 1400px) {
    .xml-faq .faq .question h4 {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .xml-faq .faq .question h4 {
        font-size: 21px;
    }

    .xml-faq .faq .answer p {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .xml-faq .faq .question {
        padding: 20px 22px;
    }

    .xml-faq .faq .answer {
        padding: 14px 22px;
    }

    .xml-faq .faq .question h4 {
        font-size: 19px;
    }

    .xml-faq .faq .answer p {
        font-size: 18px;
    }

    .xml-faq .faq .question p {
        font-size: 46px;
    }

    .xml-faq .faq.open .question p {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .xml-faq .faq .question {
        padding: 18px 20px;
    }

    .xml-faq .faq .question h4 {
        font-size: 17px;
    }

    .xml-faq .faq .answer p {
        font-size: 16px;
    }

    .xml-faq .faq .answer {
        padding: 14px 20px;
    }

    .xml-faq .faq .question p {
        font-size: 42px;
    }

    .xml-faq .faq.open .question p {
        font-size: 36px;
    }
}